CI: exclude host-provided packages (Cove SDK, EF Core) from Dependabot#85
Merged
Merged
Conversation
Cove.Sdk/Cove.Plugins/Cove.Core are the host SDK — their version is pinned to $(CoveSdkVersion) and coupled to minCoveVersion, so they move only in lockstep with the deployed Cove host, never via Dependabot. EF Core is referenced Private=false and must equal the host's runtime version (a mismatch is an AssemblyLoadContext type-identity break). Dependabot ignored the property indirection and bumped these anyway (#62/#82/#83). Add an explicit `ignore` for the Cove.* SDK packages + Microsoft.EntityFrameworkCore*, and drop EF Core from the test-analysis group (it is no longer Dependabot-managed). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



Stops Dependabot from proposing bumps to packages whose versions are dictated by the Cove host, not by us.
Why
$(CoveSdkVersion)property and coupled to each extension'sminCoveVersion, so they move only in lockstep with the deployed Cove host — a Dependabot bump breaks the ABI /minCoveVersioncontract.Private=false); its version must equal the host's runtime, or you get anAssemblyLoadContexttype-identity mismatch.Dependabot does not respect the
$(CoveSdkVersion)property indirection the config previously relied on — it rewrote the property and injected aVersionOverride, opening exactly the wrong PRs (#62, #82, #83).Change
ignorelist to the nuget block:Cove.Sdk,Cove.Plugins,Cove.Core,Microsoft.EntityFrameworkCore*.Microsoft.EntityFrameworkCore*from thetest-analysisgroup (no longer Dependabot-managed).These packages stay hand-bumped in lockstep with the host, as intended.